home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWPart / FWEmbUtl.h < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.4 KB  |  47 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWEmbUtl.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWEMBUTL_H
  11. #define FWEMBUTL_H
  12.  
  13. #ifndef FWPRTDEF_H
  14. #include "FWPrtDef.h"
  15. #endif
  16.  
  17. //========================================================================================
  18. //    Forward Declarations
  19. //========================================================================================
  20.  
  21. class ODSession;
  22. class ODContainer;
  23. class FW_CEmbeddingFrame;
  24. class FW_PFileSpecification;
  25.  
  26. //========================================================================================
  27. //    Global Methods
  28. //========================================================================================
  29.  
  30. ODContainer*             FW_AcquireFileContainer(Environment* ev, 
  31.                                         const FW_PFileSpecification& fileSpec);
  32.                                         
  33. FW_EInternalizeResult     FW_InsertPartFromFile(Environment* ev, 
  34.                                         FW_CEmbeddingFrame* frame, 
  35.                                         const FW_PFileSpecification& fileSpec);
  36.  
  37. ODPart*                 FW_ClonePartFromFile(Environment* ev, 
  38.                                         FW_CEmbeddingFrame* scopeFrame, 
  39.                                         const FW_PFileSpecification& fileSpec);
  40.  
  41. #ifdef FW_BUILD_MAC
  42. pascal Boolean            FW_MacInsertFilterProc(CInfoPBPtr pb);
  43. #endif
  44.  
  45. #endif
  46.  
  47.